home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////
- // Length restricted huffman code generator header file.
- // Implements package-merge algorithm.
- // Copyright (c) 1991 Azarona Software
- // All rights reserved.
- ////////////////////////////////////////////////////////////
-
- #ifndef H_PKMG
- #define H_PKMG
-
- #include "pnode.h"
-
- void qs(long wts[], unsigned char smap[], int n);
- int package_merge(long wts[], unsigned char smap[],
- int ns, int nl, char soln[]);
- void make_codes(char len[], unsigned code[], unsigned char smap[],
- int ns, int nl);
-
- #endif
-